home *** CD-ROM | disk | FTP | other *** search
/ Ultra Mac Games 1 & 2 / UltraMacGames1.iso / Educational / Group 1 Analysis / background_5931.txt < prev    next >
Text File  |  1991-08-08  |  2KB  |  99 lines

  1. -- background: 5931 from stack: in
  2. -- bmap block id: 8641
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: 
  6.  
  7.  
  8. -- part 8 (field)
  9. -- low flags: 01
  10. -- high flags: 0004
  11. -- rect: left=0 top=113 right=169 bottom=382
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 21
  16. -- text size: 18
  17. -- style flags: 0
  18. -- line height: 24
  19. -- part name: info
  20. ----- HyperTalk script -----
  21. on mouseup
  22.   global time1
  23.   global route
  24.   global score
  25.   global key
  26.   if key = 1 then
  27.     hide card button "coverB"-- this button covers the bottles & stops clicks
  28.     hide card button "coverD"
  29.     put empty into bkgnd field "info"
  30.     put "Click on the 1st Reagent" into line 1 of bkgnd field "info"
  31.     put "To be Added to Your Unknown" into line 2 of bkgnd field "info"
  32.     put 1 into route
  33.     put 0 into score
  34.     put 2 into key -- to turn off this field
  35.     put the seconds into time1
  36.   else
  37.  
  38.     exit mouseup
  39.   end if
  40.  
  41.  
  42. end mouseup
  43.  
  44.  
  45.  
  46. -- part 2 (field)
  47. -- low flags: 81
  48. -- high flags: 0001
  49. -- rect: left=21 top=195 right=318 bottom=62
  50. -- title width / last selected line: 0
  51. -- icon id / first selected line: 0 / 0
  52. -- text alignment: 0
  53. -- font id: 3
  54. -- text size: 12
  55. -- style flags: 0
  56. -- line height: 16
  57. -- part name: cover1
  58.  
  59.  
  60. -- part 9 (button)
  61. -- low flags: 00
  62. -- high flags: 0000
  63. -- rect: left=343 top=8 right=51 bottom=390
  64. -- title width / last selected line: 0
  65. -- icon id / first selected line: 1011 / 1011
  66. -- text alignment: 1
  67. -- font id: 0
  68. -- text size: 12
  69. -- style flags: 0
  70. -- line height: 16
  71. -- part name: home
  72. ----- HyperTalk script -----
  73. on mouseUp
  74.   answer "Quit" with "yes" or "cancel"
  75.   if it = "yes" then go home
  76.  
  77. end mouseUp
  78.  
  79.  
  80.  
  81. -- part 10 (button)
  82. -- low flags: 00
  83. -- high flags: A004
  84. -- rect: left=450 top=293 right=340 bottom=508
  85. -- title width / last selected line: 0
  86. -- icon id / first selected line: 4432 / 4432
  87. -- text alignment: 1
  88. -- font id: 0
  89. -- text size: 12
  90. -- style flags: 0
  91. -- line height: 16
  92. -- part name: Main Menu
  93. ----- HyperTalk script -----
  94. on mouseUp
  95.   answer "Go to Menu?" with "yes" or "cancel"
  96.   if it = "yes" then go to card "menu"
  97. end mouseUp
  98.  
  99.